home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Gamer (Italian) 30
/
PC Gamer IT CD 30 1-2.iso
/
MOTS
/
GAMEDATA
/
RESOURCE
/
JKMRES.GOO
/
cog_ctf_itemkeygold.cog
< prev
next >
Wrap
Text File
|
1998-02-25
|
649b
|
38 lines
# Jedi Knight Cog Script
#
# CTF_ITEMKEYGOLD.COG
#
# Describes the CTF Gold key when the player
# activates the inventory item.
#
# [YB]
#
# (C) 1997 LucasArts Entertainment Co. All Rights Reserved
symbols
message activated
sound keysound=BactaUse01.WAV
int player local
end
# ========================================================================================
code
activated:
player = GetSourceRef();
// Print("This Key Opens The CTF Gold Doors !");
jkPrintUNIString(player, 1075);
PlaySoundLocal(keysound, 1.0, 0.0, 0 );
Return;
end